Documentation - Github pages #267
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I created a Read the Docs themed Sphinx version of the README and plugged it in to GitHub Pages. I've also added a Getting Started section as suggested in #183.
It looks really nice 😎 https://gerazov.github.io/orgmode/
I was following Continuous Documentation: Hosting Read the Docs on GitHub Pages up to the automation part.
The documentation in
rst
format is in./docs_rst/
and the compiled website in./docs
- this is the only folder that can be specified other than root for gh-pages to work.I've currently compiled the
rst
localjy tohtml
usingpython-sphinx
andmake html
, which generates thehtml
in the./docs_rst/_build/html/
folder. I then copied this to./docs
and activated gh-pages on thedocumentation
branch and the./docs
folder.I've done this manually just so I can share the way it looks. In the main repo it should be automated via scripts as described in Continuous Documentation: Hosting Read the Docs on GitHub Pages